Simplify Routing with Route Groups, Prefixes, and Middleware


To organize routes efficiently using route groups with prefixes and middleware, making code cleaner and easier to manage.

// Define a route group with a prefix and middleware
Route::prefix('admin')
    ->middleware('auth')
    ->group(function () {
        Route::get('dashboard', [AdminController::class, 'dashboard']);
        Route::get('settings', [AdminController::class, 'settings']);
    });

Route::prefix('admin'): Adds the 'admin' prefix to all routes in this group, so they will be like admin/dashboard and admin/settings.

->middleware('auth'): Applies the 'auth' middleware to all routes in this group, meaning users must be authenticated to access these routes.

->group(function () { ... }): Groups multiple routes together, making it easier to apply common settings like prefixes and middleware.

You Might Also Like

Keep Data Without Deleting It: Using Laravel Soft Delete

# Step 1: Enable Soft Deletes in Your Model Add SoftDeletes to your model. Let's take an example wit...

Minimize Direct Queries in Blade Views

Avoid executing database queries directly within Blade templates. Instead, fetch data in the control...